home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / include / system.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-11  |  397 b   |  22 lines

  1.  
  2. #ifndef _SYSTEM_H_
  3. #define _SYSTEM_H_
  4.  
  5. #ifndef NO_PROTO
  6.  
  7. #ifdef __cplusplus                      /* for C++ V2.0 */
  8.   extern "C" {   /* do not leave open across includes */
  9. #endif /* __cplusplus */
  10.  
  11. int             system(const char *);
  12.  
  13. #ifdef __cplusplus                      /* for C++ V2.0 */
  14.   }
  15. #endif /* __cplusplus */
  16.  
  17. #else
  18. int             system();
  19. #endif
  20.  
  21. #endif
  22.